home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / iceweasel.prerm < prev    next >
Encoding:
Text File  |  2013-01-09  |  387 b   |  15 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then
  4.     update-alternatives --remove x-www-browser /usr/bin/iceweasel
  5.     update-alternatives --remove gnome-www-browser /usr/bin/iceweasel
  6. fi
  7.  
  8. if [ "$1" = "remove" ]; then
  9.     rm -f /usr/lib/iceweasel/components/compreg.dat \
  10.           /usr/lib/iceweasel/components/xpti.dat
  11.     rm -rf /usr/lib/iceweasel/updates
  12. fi
  13.  
  14.  
  15.